home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / etc / dbslip.z / dbslip
Text File  |  1995-02-28  |  987b  |  44 lines

  1. #!/bin/sh
  2. #    "$Revision: 1.2 $"
  3.  
  4. # This script/configuration file can be used for a "dial-back SLIP line."
  5.  
  6. #   Put the name of this script into the last field of the /etc/passwd
  7. #       entry for the remote machine's account on this machine like
  8. #       the following:
  9. #remhost:baldeblah:0:0:Joes remote machine:/:/usr/etc/remoteslip
  10.  
  11. #   Then add an appripriate line for the remote machine in
  12. #    /usr/lib/uucp/Systems.
  13.  
  14. #   Finally, add an appropriate line to /etc/passwd on the remote machine
  15. #    to allow the local machine to log in with /usr/etc/dbslip as its
  16. #    shell:
  17. #lochost:baldeblah:0:0:Joes remote machine:/:/usr/etc/dbslip
  18.  
  19.  
  20.  
  21. echo "\n\nwill hang up `tty` and dial you back.\n\n"
  22. sleep 1
  23.  
  24. # ignore SIGHUP
  25. trap "" 1
  26.  
  27. # get rid of the incoming modem line
  28. stty 0
  29. exec < /dev/null > /dev/null 2>&1
  30.  
  31. # let the modems quiet down
  32. sleep 15
  33.  
  34. case $USER in
  35. # Joe's machine
  36. #IRIS1)
  37. #    exec /usr/etc/slip -p cslip -r $USER &
  38. #    ;;
  39.  
  40. *)
  41.     logger "unknown dial-back slip user"
  42.     ;;
  43. esac
  44.